home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_glimpse.idb / usr / freeware / src / glimpse-3.0 / libtemplate / util / buffer.c.z / buffer.c
C/C++ Source or Header  |  1997-09-09  |  4KB  |  153 lines

  1. static char rcsid[] = "$Id: buffer.c,v 1.8 1995/02/04 01:37:51 hardy Exp $";
  2. /*
  3.  *  buffer.c - Simple dynamic buffer management.
  4.  *
  5.  *  Darren Hardy, hardy@cs.colorado.edu, February 1994
  6.  *
  7.  *  ----------------------------------------------------------------------
  8.  *  Copyright (c) 1994, 1995.  All rights reserved.
  9.  *  
  10.  *          Mic Bowman of Transarc Corporation.
  11.  *          Peter Danzig of the University of Southern California.
  12.  *          Darren R. Hardy of the University of Colorado at Boulder.
  13.  *          Udi Manber of the University of Arizona.
  14.  *          Michael F. Schwartz of the University of Colorado at Boulder. 
  15.  *  
  16.  *  This copyright notice applies to all code in Harvest other than
  17.  *  subsystems developed elsewhere, which contain other copyright notices
  18.  *  in their source text.
  19.  *  
  20.  *  The Harvest software was developed by the Internet Research Task
  21.  *  Force Research Group on Resource Discovery (IRTF-RD).  The Harvest
  22.  *  software may be used for academic, research, government, and internal
  23.  *  business purposes without charge.  If you wish to sell or distribute
  24.  *  the Harvest software to commercial clients or partners, you must
  25.  *  license the software.  See
  26.  *  http://harvest.cs.colorado.edu/harvest/copyright,licensing.html#licensing.
  27.  *  
  28.  *  The Harvest software is provided ``as is'', without express or
  29.  *  implied warranty, and with no support nor obligation to assist in its
  30.  *  use, correction, modification or enhancement.  We assume no liability
  31.  *  with respect to the infringement of copyrights, trade secrets, or any
  32.  *  patents, and are not responsible for consequential damages.  Proper
  33.  *  use of the Harvest software is entirely the responsibility of the user.
  34.  *  
  35.  *  For those who are using Harvest for non-commercial purposes, you may
  36.  *  make derivative works, subject to the following constraints:
  37.  *  
  38.  *  - You must include the above copyright notice and these accompanying 
  39.  *    paragraphs in all forms of derivative works, and any documentation 
  40.  *    and other materials related to such distribution and use acknowledge 
  41.  *    that the software was developed at the above institutions.
  42.  *  
  43.  *  - You must notify IRTF-RD regarding your distribution of the 
  44.  *    derivative work.
  45.  *  
  46.  *  - You must clearly notify users that your are distributing a modified 
  47.  *    version and not the original Harvest software.
  48.  *  
  49.  *  - Any derivative product is also subject to the restrictions of the 
  50.  *    copyright, including distribution and use limitations.
  51.  */
  52. #include <stdio.h>
  53. #include <string.h>
  54. #include "util.h"
  55.  
  56. /*
  57.  *  create_buffer() - Creates a buffer of default_size bytes allocated.
  58.  */
  59. Buffer *create_buffer(default_size)
  60. int default_size;
  61. {
  62.     static Buffer *b = NULL;
  63.  
  64.     b = xmalloc(sizeof(Buffer));
  65.     b->size = b->default_size = default_size;
  66.     b->data = xmalloc(b->size);
  67.     b->length = 0;
  68. #ifdef DEBUG
  69.     log("Creating buffer of %d bytes\n", b->size);
  70. #endif
  71.     return (b);
  72. }
  73.  
  74. /*
  75.  *  increase_buffer() - Increase the buffer so that it holds sz more bytes.
  76.  */
  77. void increase_buffer(b, sz)
  78. Buffer *b;
  79. int sz;
  80. {
  81.     b->size += sz;
  82.     b->data = xrealloc(b->data, b->size);
  83. #ifdef DEBUG
  84.     log("Growing buffer by %d bytes to %d bytes\n", sz, b->size);
  85. #endif
  86. }
  87.  
  88. /*
  89.  *  grow_buffer() - increases the buffer size by the default size
  90.  */
  91. void grow_buffer(b)
  92. Buffer *b;
  93. {
  94.     increase_buffer(b, b->default_size);
  95. }
  96.  
  97. /*
  98.  *  shrink_buffer() - restores a buffer back to its original size.
  99.  *  all data is lost.
  100.  */
  101. void shrink_buffer(b)
  102. Buffer *b;
  103. {
  104.     b->length = 0;
  105.     if (b->size == b->default_size)        /* nothing to do */
  106.         return;
  107.  
  108.     if (b->data)
  109.         xfree(b->data);
  110.     b->size = b->default_size;
  111.     b->data = xmalloc(b->size);
  112. #ifdef DEBUG
  113.     log("Shrinking buffer to %d bytes\n", b->size);
  114. #endif
  115. }
  116.  
  117. /*
  118.  *  free_buffer() - Cleans up after a buffer.
  119.  */
  120. void free_buffer(b)
  121. Buffer *b;
  122. {
  123.     if (b == NULL)
  124.         return;
  125. #ifdef DEBUG
  126.     log("Freeing buffer of %d bytes\n", b->size);
  127. #endif
  128.     if (b->data)
  129.         xfree(b->data);
  130.     xfree(b);
  131. }
  132.  
  133.  
  134. /*
  135.  *  add_buffer() - Adds the sz bytes of s to the Buffer b.
  136.  */
  137. void add_buffer(b, s, sz)
  138. Buffer *b;
  139. char *s;
  140. int sz;
  141. {
  142.     if (sz < 1)
  143.         return;
  144.     if (b->length + sz + 1 > b->size)
  145.         increase_buffer(b, sz);
  146.     if (sz > 1)
  147.         memcpy(&b->data[b->length], s, sz);
  148.     else
  149.         b->data[b->length] = *s;
  150.     b->length += sz;
  151.     b->data[b->length] = '\0';    /* add NULL to current position */
  152. }
  153.